From bfa8ae1901c3183d84ea4cdca7db38e9d7ad24f9 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Wed, 28 Aug 2013 21:20:05 -0400 Subject: [PATCH] * nxml/nxml-util.el (nxml-debug-clear-inside): Use cl-loop rather than loop. --- lisp/ChangeLog | 3 +++ lisp/nxml/nxml-util.el | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4ad976c0a6d..28f24479950 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2013-08-29 Glenn Morris + * nxml/nxml-util.el (nxml-debug-clear-inside): + Use cl-loop rather than loop. + * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad. * progmodes/sh-script.el (sh-builtins) : Add some bash4-isms. diff --git a/lisp/nxml/nxml-util.el b/lisp/nxml/nxml-util.el index 75479160cbb..c410aa12c83 100644 --- a/lisp/nxml/nxml-util.el +++ b/lisp/nxml/nxml-util.el @@ -45,7 +45,7 @@ (defmacro nxml-debug-clear-inside (start end) (when nxml-debug - `(loop for overlay in (overlays-in ,start ,end) + `(cl-loop for overlay in (overlays-in ,start ,end) if (overlay-get overlay 'nxml-inside-debug) do (delete-overlay overlay) finally (nxml-debug-change "nxml-clear-inside" ,start ,end)))) -- 2.30.2